'Declaration
Public Function New( _ ByVal nodeArguments As UANodeArguments, _ ByVal methodNodeDescriptor As UANodeDescriptor, _ ByVal inputArguments() As Object _ )
'Usage
Dim nodeArguments As UANodeArguments Dim methodNodeDescriptor As UANodeDescriptor Dim inputArguments() As Object Dim instance As New UACallArguments(nodeArguments, methodNodeDescriptor, inputArguments)
public UACallArguments( UANodeArguments nodeArguments, UANodeDescriptor methodNodeDescriptor, object[] inputArguments )
public: UACallArguments( UANodeArguments^ nodeArguments, UANodeDescriptor^ methodNodeDescriptor, array<Object^>^ inputArguments )
Parameters
- nodeArguments
- An object that specifies the node in the OPC server.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - methodNodeDescriptor
- Method Node Id. Identifies the method node in OPC server's address space.
Because the OpcLabs.EasyOpc.UA.UANodeDescriptor has implicit conversions from OpcLabs.EasyOpc.UA.AddressSpace.UANodeId, OpcLabs.EasyOpc.UA.AddressSpace.UANodeElement, OpcLabs.EasyOpc.UA.Navigation.UABrowsePath and System.String, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use a OpcLabs.EasyOpc.UA.AddressSpace.UANodeId object (representing the Id of the OPC UA node), a node element object (from OPC UA browsing), OpcLabs.EasyOpc.UA.Navigation.UABrowsePath object (representing OPC UA absolute browse path), or a string (with expanded node Id text) in place of this parameter, and the corresponding node descriptor will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the OpcLabs.EasyOpc.UA.UANodeDescriptor.FromString, OpcLabs.EasyOpc.UA.UANodeDescriptor.FromUABrowsePath, OpcLabs.EasyOpc.UA.UANodeDescriptor.FromUANodeElement or OpcLabs.EasyOpc.UA.UANodeDescriptor.FromUANodeId static method instead.
If you are using OPC Wizard (for server development), an implicit conversion from OpcLabs.EasyOpc.UA.NodeSpace.UAServerNode can be used in the same way to simply pass the server node in place of this parameter, which will use its OpcLabs.EasyOpc.UA.NodeSpace.UAServerNode.EffectiveNodeDescriptor property for the operation.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - inputArguments
- Array of input arguments to the method call. The number of arguments and their types must conform to the method's requirements.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).The individual elements of the parameter value can be
null
(Nothing
in Visual Basic).